home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 June: Reference Library / Dev.CD Jun 94.toast / Periodicals / develop / develop Issue 11 / develop 11 code / The NetWork Project / Examples (Sources) / hello.make next >
Encoding:
Text File  |  1992-07-15  |  1.4 KB  |  48 lines  |  [TEXT/MPS ]

  1. # makefile for "NetE"
  2. # Copyright 1991 The NetWork Project, StatLab Heidelberg
  3. # Copyright 1991 G. Sawitzki, StatLab Heidelberg
  4. # All rights reserved.
  5. #
  6.  
  7. # Start of NetWork Setup
  8. #
  9. # This is a set of definitions used in all make files of the NetWork project.
  10. # If the locations you have chosen differ from our recommendations, you should
  11. # copy & paste this header in all NetWork make files.
  12. #
  13. # unfortunately, Apple uses a convention to use quotes during usage, not
  14. # definition of symbols. For consistency, we stick to that convention.
  15. #
  16. NetWork_Tools = {SystemFolder}NetWork Tools:
  17. NetWork_Idle_Tools = {SystemFolder}NetWork Idle Tools:
  18. NetWork_Startup_Tools = {SystemFolder}NetWork Startup Tools:
  19. NetWork_Logs = {SystemFolder}NetWork Logs:
  20. NetWork_Examples = {Boot}Projects:NetWork:NetWork Examples:
  21. #
  22. NetWork_Libraries = {Libraries}
  23. NetWork_PInterfaces = {PInterfaces}
  24. NetWork_CIncludes = {CIncludes}
  25. #
  26. # End of NetWork Setup
  27.  
  28. xPOptions    = -r -mbg full
  29. Libs    = "{PLibraries}PasLib.o" "{Libraries}Interface.o" "{Libraries}Runtime.o"
  30.  
  31.     
  32.  
  33. hello.p.o    ƒ    hello.p 
  34.     
  35. hello    ƒƒ    hello.r
  36.     Rez  -a -o hello hello.R
  37.  
  38. hello    ƒƒ    hello.p.o  
  39.     Link -w -c hello -o {Targ}             ∂
  40.         hello.p.o ∂
  41.         "{Libraries}"ObjLib.o ∂
  42.         "{NetWork_Libraries}"NetWorkLib.o ∂
  43.         "{NetWork_Libraries}"SchedulerUnit.p.o {Libs} 
  44.         # setfile -a B hello #uncomment if you have a bundle
  45.         echo '##installing hello:'
  46.         newfolder "{NetWork_Startup_Tools}" ∑∑ dev:null || set status 0
  47.         duplicate  hello  "{NetWork_Startup_Tools}"
  48.